***Antipattern***
Count: 9
- /devices/{id}/pass  Check if the password matches.
- /devices/{id}/certs/{cid}  Updates a cert associated to a device. The csr is signed and saved in database. The CommonName will be replaced with the device id.
- /series/batch_query_raw  Returns the batch of time-series data raw
- /series/batch_query  Returns the batch of time-series data
- /things/{id}/properties  Creates a new property associated to a thing
- /series/batch_query_raw/lastvalue  Returns the batch of time-series data raw
- /devices/{id}/certs/{cid}  Removes a cert associated to a device
- /devices/{id}/certs/{cid}  Returns the cert requested by the user
- /devices/{id}/events  GET device events.

***Pattern***
Count: 11
- /devices/{id}/properties  Update device properties last values
- /devices/{id}/certs  Returns the list of certs associated to the device
- /devices  Creates a new device associated to the user.
- /devices/{id}/certs  Creates a new cert associated to a device. The csr is signed and saved in database. The CommonName will be replaced with the device id.
- /devices/{id}/properties/{pid}  GET device properties values in a range of time
- /devices/{id}  Returns the device requested by the user.
- /devices/{id}  Removes a device associated to the user.
- /things/{id}/properties/{pid}/publish  Publish a property value to MQTT
- /devices/{id}  Removes a device associated to the user
- /devices/{id}/properties  GET device properties.
- /devices  Returns the list of devices associated to the user.
